LostTech.TensorFlow : API Documentation

Type PythonList<T>

Namespace LostTech.Gradient.BuiltIns

Parent PythonCollection<T, TSeq>

Interfaces IList<T>, IReadOnlyList<T>, IList

Wraps an instance of Python's list type

Methods

Properties

Public instance methods

void Add(T item)

void Clear()

Removes all the items from the set

bool Contains(T item)

int IndexOf(T item)

void Insert(int index, T item)

bool Remove(T item)

void RemoveAt(int index)

Removes list item at the specified index.
Parameters
int index
Index of the item to remove

Public properties

int Count get;

T Item get; set;

Gets a slice of the list

object PythonObject get;